net/http.http2StreamError.Code (field)

15 uses

	net/http (current package)
		h2_bundle.go#L1232: 	Code     http2ErrCode
		h2_bundle.go#L1242: 	return http2StreamError{StreamID: id, Code: code}
		h2_bundle.go#L1247: 		return fmt.Sprintf("stream error: stream ID %d; %v; %v", e.StreamID, e.Code, e.Cause)
		h2_bundle.go#L1249: 	return fmt.Sprintf("stream error: stream ID %d; %v", e.StreamID, e.Code)
		h2_bundle.go#L5735: 		Code:     http2ErrCodeInternal,
		h2_bundle.go#L7112: 		code = http2ErrCode(e.Code)
		h2_bundle.go#L7736: 		if se.Code == http2ErrCodeProtocol && se.Cause == http2errFromPeer {
		h2_bundle.go#L7740: 		return se.Code == http2ErrCodeRefusedStream
		h2_bundle.go#L8657: 					cc.writeStreamReset(cs.ID, se.Code, err)
		h2_bundle.go#L9409: 			Code:     http2ErrCodeProtocol,
		h2_bundle.go#L9438: 			Code:     http2ErrCodeProtocol,
		h2_bundle.go#L9747: 			Code:     http2ErrCodeProtocol,
		h2_bundle.go#L9755: 			Code:     http2ErrCodeProtocol,
		h2_bundle.go#L9764: 				Code:     http2ErrCodeProtocol,
		h2_bundle.go#L10383: 	return ctx.Framer().WriteRSTStream(se.StreamID, se.Code)